From: Richard M. Stallman Date: Tue, 15 Jun 1993 07:48:27 +0000 (+0000) Subject: (adjust_intervals_for_insertion): By default, copy X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~95324 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=eebaeadde2e9cd812dd5b3eebf3860164338feb0;p=emacs.git (adjust_intervals_for_insertion): By default, copy properties from before the insertion. --- diff --git a/src/intervals.c b/src/intervals.c index e6254cbdf6a..a737e9dceef 100644 --- a/src/intervals.c +++ b/src/intervals.c @@ -655,7 +655,7 @@ adjust_intervals_for_insertion (tree, position, length) /* If both intervals are sticky here, then default to the left-most one. But perhaps we should create a new interval here instead... */ - if (END_STICKY_P (prev)) + if (END_STICKY_P (prev) || ! FRONT_STICKY_P (i)) i = prev; }